home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00195_Script_Squiggle40 < prev    next >
Text File  |  1999-02-25  |  732b  |  22 lines

  1. on enterFrame me
  2.   if the loch of sprite the spriteNum of me < 200 then
  3.     set the loch of sprite the spriteNum of me = the loch of sprite the spriteNum of me + 10
  4.   else if the loch of sprite the spriteNum of me > 10 then
  5.     set the loch of sprite the spriteNum of me = the loch of sprite the spriteNum of me - 10
  6.   end if
  7.   
  8. end
  9.  
  10. on mouseWithin me
  11.   set the loch of sprite the spriteNum of me = the mouseh
  12.   set the locv of sprite the spriteNum of me = the mousev
  13.   set the memberNum of sprite the spriteNum of me = 240
  14.   set the height of sprite the spriteNum of me = 80
  15. end
  16.  
  17. on mouseLeave me
  18.   set the memberNum of sprite the spriteNum of me = 239
  19.   set the height of sprite the spriteNum of me = 15
  20. end
  21.  
  22.